Skip to content

Conversation

@ghkang98
Copy link
Contributor

@ghkang98 ghkang98 commented Jan 5, 2026

…ped or not alive on delete from command.

When a node is abnormal or dropped, the delete job function does not filter the replicas for these nodes, resulting in failure during task dispatch and causing the task to not execute properly during the Delete operation. On the other hand, after a task execution fails, it keeps retrying; however, it does not adequately consider that in certain scenarios a retry cannot resolve the issue and can only rely on the overall timeout of the outer task to terminate, which can lead to the task being stuck for a long time.

  • Test
    • Regression test
    • Unit Test
    • Manual test (add detailed scripts or steps below)

@Thearas
Copy link
Contributor

Thearas commented Jan 5, 2026

Thank you for your contribution to Apache Doris.
Don't know what should be done next? See How to process your PR.

Please clearly describe your PR:

  1. What problem was fixed (it's best to include specific error reporting information). How it was fixed.
  2. Which behaviors were modified. What was the previous behavior, what is it now, why was it modified, and what possible impacts might there be.
  3. What features were added. Why was this function added?
  4. Which code was refactored and why was this part of the code refactored?
  5. Which functions were optimized and what is the difference before and after the optimization?

@yiguolei
Copy link
Contributor

yiguolei commented Jan 6, 2026

run buildall

st = status;
public void addMark(K key, V value) {
synchronized (lock) {
marks.put(key, value);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

这里如果downLatch != null,需要报错,我们不能够支持await 之后,还变更mark的数量

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK,这里可以增加一个判断的,之所以让这个行为存在主要是为了兼容之前的写入,我们可以让使用者在事先就知道目标的count是多少,然后调用有count的构造函数在构建MarkedCountDownLatch时就初始化downLatch,如果可以不兼容这种情况那么是需要在这里限制这种行为的。

public synchronized void addMark(K key, V value) {
marks.put(key, value);
public long getCount() {
synchronized (lock) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

这个lock,跟直接在函数上加synchronized 修饰有什么区别?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

这里主要是考虑到了部分函数比如说wait不是锁整个method只是锁住代码块,为了整个类的风格统一所以在函数内使用代码块的锁

public MarkedCountDownLatch(int count) {
super(count);
this.markCount = count;
this.downLatch = new CountDownLatch(count);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

这个构造函数还存在的意义是什么?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

如果这个构造函数去不掉,就说明有的时候,我们的这个count 可能不等于marks的数量,可能是有问题的

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

这个构造函数和上面一样是为了减少改动量,兼容之前的一些使用方式

if (marks.remove(key, value)) {
super.countDown();
return true;
public void countDown() {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

我们需要这种api 存在吗? 此时marks 里的东西没有清空,后续是不是对不上了?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

是不是只需要保留marked count down 就可以了?


public synchronized void addMark(K key, V value) {
marks.put(key, value);
public long getCount() {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

这个函数确实有用吗?

yiguolei
yiguolei previously approved these changes Jan 13, 2026
@yiguolei
Copy link
Contributor

run buildall

@github-actions github-actions bot added the approved Indicates a PR has been approved by one committer. label Jan 13, 2026
@github-actions
Copy link
Contributor

PR approved by at least one committer and no changes requested.

@github-actions
Copy link
Contributor

PR approved by anyone and no changes requested.

@github-actions github-actions bot removed the approved Indicates a PR has been approved by one committer. label Jan 14, 2026
@ghkang98
Copy link
Contributor Author

run buildall

@doris-robot
Copy link

TPC-H: Total hot run time: 31879 ms
machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
scripts: https://github.com/apache/doris/tree/master/tools/tpch-tools
Tpch sf100 test result on commit 221111dd56977c558f9bf0ca990d2b43eda7a7ba, data reload: false

------ Round 1 ----------------------------------
q1	17633	4251	4062	4062
q2	1991	350	242	242
q3	10204	1255	722	722
q4	10222	894	304	304
q5	7488	2071	1905	1905
q6	184	168	137	137
q7	966	757	665	665
q8	9278	1424	1224	1224
q9	5009	4576	4526	4526
q10	6777	1814	1391	1391
q11	533	296	287	287
q12	683	754	571	571
q13	17791	3874	3107	3107
q14	291	292	275	275
q15	605	509	509	509
q16	662	677	633	633
q17	644	826	499	499
q18	6545	6354	7142	6354
q19	1265	1033	651	651
q20	426	391	250	250
q21	3208	2657	2504	2504
q22	1160	1102	1061	1061
Total cold run time: 103565 ms
Total hot run time: 31879 ms

----- Round 2, with runtime_filter_mode=off -----
q1	4298	4349	4332	4332
q2	370	423	333	333
q3	2279	2773	2395	2395
q4	1363	1914	1557	1557
q5	4468	4365	4501	4365
q6	217	167	127	127
q7	1922	1948	1756	1756
q8	2509	2410	2343	2343
q9	7207	7161	7344	7161
q10	2452	2734	2207	2207
q11	543	449	428	428
q12	633	680	576	576
q13	3330	3744	3078	3078
q14	269	291	252	252
q15	517	483	479	479
q16	603	647	615	615
q17	1087	1272	1354	1272
q18	7293	7199	6968	6968
q19	801	786	789	786
q20	1877	1961	1806	1806
q21	4517	4234	4080	4080
q22	1065	1037	972	972
Total cold run time: 49620 ms
Total hot run time: 47888 ms

@doris-robot
Copy link

TPC-DS: Total hot run time: 173137 ms
machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
scripts: https://github.com/apache/doris/tree/master/tools/tpcds-tools
TPC-DS sf100 test result on commit 221111dd56977c558f9bf0ca990d2b43eda7a7ba, data reload: false

query5	4453	624	494	494
query6	342	227	213	213
query7	4214	469	262	262
query8	344	267	256	256
query9	8732	2898	2850	2850
query10	534	393	345	345
query11	15403	15080	14883	14883
query12	177	119	122	119
query13	1293	485	390	390
query14	6241	2997	2732	2732
query14_1	2675	2651	2680	2651
query15	207	197	176	176
query16	1002	487	474	474
query17	1114	688	569	569
query18	2505	443	344	344
query19	226	229	195	195
query20	123	114	114	114
query21	215	136	120	120
query22	3869	3902	4016	3902
query23	16021	15576	15154	15154
query23_1	15250	15491	15369	15369
query24	7172	1569	1186	1186
query24_1	1173	1180	1184	1180
query25	576	479	419	419
query26	1234	276	159	159
query27	2753	450	281	281
query28	4589	2138	2135	2135
query29	798	547	445	445
query30	304	242	218	218
query31	839	625	564	564
query32	86	76	76	76
query33	551	361	324	324
query34	932	886	538	538
query35	743	767	681	681
query36	891	895	797	797
query37	179	107	90	90
query38	2732	2715	2642	2642
query39	787	757	728	728
query39_1	710	723	702	702
query40	219	132	117	117
query41	65	62	79	62
query42	108	106	102	102
query43	432	486	410	410
query44	1317	735	727	727
query45	181	179	176	176
query46	854	936	562	562
query47	1460	1445	1396	1396
query48	310	321	243	243
query49	605	431	339	339
query50	614	275	199	199
query51	3733	3790	3719	3719
query52	107	110	92	92
query53	292	325	269	269
query54	299	269	265	265
query55	84	78	74	74
query56	309	309	306	306
query57	1026	1044	910	910
query58	268	261	258	258
query59	2008	2118	2068	2068
query60	375	340	317	317
query61	158	159	155	155
query62	375	350	331	331
query63	298	267	260	260
query64	4937	1287	985	985
query65	3756	3727	3774	3727
query66	1436	426	321	321
query67	15317	14770	14819	14770
query68	6535	978	720	720
query69	531	356	328	328
query70	1041	952	943	943
query71	352	314	295	295
query72	5761	3312	3331	3312
query73	765	716	334	334
query74	8753	8991	8648	8648
query75	2803	2866	2455	2455
query76	3432	1055	651	651
query77	533	413	311	311
query78	9764	9671	9133	9133
query79	1771	899	572	572
query80	673	581	494	494
query81	512	262	224	224
query82	212	144	109	109
query83	266	263	233	233
query84	247	114	92	92
query85	908	508	470	470
query86	392	299	281	281
query87	2897	2868	2773	2773
query88	4391	2589	2587	2587
query89	371	354	329	329
query90	2177	172	161	161
query91	174	165	146	146
query92	89	70	68	68
query93	2354	912	519	519
query94	573	320	286	286
query95	591	330	372	330
query96	639	492	234	234
query97	2312	2370	2280	2280
query98	239	197	199	197
query99	599	578	532	532
Total cold run time: 254371 ms
Total hot run time: 173137 ms

@doris-robot
Copy link

ClickBench: Total hot run time: 26.74 s
machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
scripts: https://github.com/apache/doris/tree/master/tools/clickbench-tools
ClickBench test result on commit 221111dd56977c558f9bf0ca990d2b43eda7a7ba, data reload: false

query1	0.06	0.04	0.05
query2	0.09	0.05	0.05
query3	0.25	0.09	0.09
query4	1.60	0.12	0.11
query5	0.27	0.25	0.26
query6	1.15	0.66	0.65
query7	0.03	0.03	0.03
query8	0.06	0.04	0.05
query9	0.57	0.49	0.50
query10	0.54	0.52	0.55
query11	0.14	0.10	0.10
query12	0.14	0.11	0.11
query13	0.60	0.58	0.59
query14	0.95	0.96	0.95
query15	0.78	0.77	0.78
query16	0.39	0.42	0.40
query17	1.01	1.01	1.07
query18	0.22	0.21	0.21
query19	1.87	1.82	1.87
query20	0.02	0.01	0.01
query21	15.46	0.28	0.13
query22	5.01	0.06	0.04
query23	15.74	0.27	0.10
query24	0.98	0.53	0.23
query25	0.06	0.05	0.06
query26	0.14	0.14	0.13
query27	0.08	0.05	0.05
query28	3.03	1.09	0.89
query29	12.56	3.91	3.16
query30	0.28	0.14	0.11
query31	2.82	0.63	0.39
query32	3.24	0.55	0.45
query33	2.97	3.06	2.97
query34	15.80	5.07	4.50
query35	4.46	4.44	4.45
query36	0.65	0.51	0.51
query37	0.10	0.07	0.06
query38	0.07	0.04	0.04
query39	0.04	0.03	0.03
query40	0.17	0.14	0.14
query41	0.09	0.03	0.03
query42	0.04	0.03	0.03
query43	0.05	0.03	0.03
Total cold run time: 94.58 s
Total hot run time: 26.74 s

@ghkang98
Copy link
Contributor Author

run buildall

@doris-robot
Copy link

TPC-H: Total hot run time: 31228 ms
machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
scripts: https://github.com/apache/doris/tree/master/tools/tpch-tools
Tpch sf100 test result on commit 221111dd56977c558f9bf0ca990d2b43eda7a7ba, data reload: false

------ Round 1 ----------------------------------
q1	17613	4261	4056	4056
q2	2021	365	247	247
q3	10145	1269	710	710
q4	10229	905	315	315
q5	7555	2136	1803	1803
q6	185	170	145	145
q7	908	817	676	676
q8	9300	1358	1147	1147
q9	4942	4617	4594	4594
q10	6754	1770	1404	1404
q11	534	290	289	289
q12	679	742	600	600
q13	17803	3825	3077	3077
q14	299	286	272	272
q15	596	512	510	510
q16	684	674	641	641
q17	648	810	465	465
q18	6781	6259	6402	6259
q19	1102	973	608	608
q20	392	356	251	251
q21	2971	2688	2214	2214
q22	1074	1017	945	945
Total cold run time: 103215 ms
Total hot run time: 31228 ms

----- Round 2, with runtime_filter_mode=off -----
q1	4134	4042	4060	4042
q2	322	396	333	333
q3	2082	2619	2202	2202
q4	1297	1749	1306	1306
q5	4103	3958	4136	3958
q6	212	174	129	129
q7	1813	1845	1689	1689
q8	2823	2508	2451	2451
q9	7280	7158	7220	7158
q10	2496	2756	2457	2457
q11	541	502	460	460
q12	731	758	635	635
q13	3595	4129	3538	3538
q14	294	294	285	285
q15	622	576	541	541
q16	638	677	627	627
q17	1143	1366	1436	1366
q18	8438	7698	7875	7698
q19	1050	856	825	825
q20	1958	2134	1954	1954
q21	4735	4454	4346	4346
q22	1090	1029	990	990
Total cold run time: 51397 ms
Total hot run time: 48990 ms

@doris-robot
Copy link

TPC-DS: Total hot run time: 173479 ms
machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
scripts: https://github.com/apache/doris/tree/master/tools/tpcds-tools
TPC-DS sf100 test result on commit 221111dd56977c558f9bf0ca990d2b43eda7a7ba, data reload: false

query5	4410	626	494	494
query6	333	228	206	206
query7	4209	477	260	260
query8	355	257	266	257
query9	8700	2890	2846	2846
query10	522	391	345	345
query11	15302	15148	14787	14787
query12	178	116	112	112
query13	1274	497	384	384
query14	5959	2981	2793	2793
query14_1	2689	2634	2658	2634
query15	209	196	169	169
query16	1017	488	469	469
query17	1125	685	578	578
query18	2436	445	338	338
query19	227	229	201	201
query20	123	113	115	113
query21	220	134	124	124
query22	4061	4005	3841	3841
query23	16009	15437	15286	15286
query23_1	15453	15297	15381	15297
query24	7220	1547	1159	1159
query24_1	1196	1162	1210	1162
query25	560	472	431	431
query26	1243	272	155	155
query27	2758	460	276	276
query28	4543	2121	2111	2111
query29	762	577	446	446
query30	313	232	219	219
query31	828	632	560	560
query32	88	79	77	77
query33	544	353	325	325
query34	902	883	537	537
query35	757	769	693	693
query36	891	916	881	881
query37	133	106	92	92
query38	2752	2758	2709	2709
query39	771	755	736	736
query39_1	720	705	691	691
query40	219	133	117	117
query41	65	62	60	60
query42	102	103	102	102
query43	452	439	458	439
query44	1287	729	735	729
query45	184	183	175	175
query46	812	938	563	563
query47	1353	1475	1389	1389
query48	306	318	248	248
query49	609	439	331	331
query50	610	273	207	207
query51	3749	3791	3934	3791
query52	106	107	98	98
query53	292	335	271	271
query54	295	287	255	255
query55	84	80	78	78
query56	320	304	310	304
query57	998	975	935	935
query58	266	250	257	250
query59	2149	2222	2134	2134
query60	337	340	314	314
query61	159	152	152	152
query62	395	362	325	325
query63	297	267	265	265
query64	4881	1260	970	970
query65	3756	3699	3753	3699
query66	1456	418	321	321
query67	14968	15421	15045	15045
query68	7299	982	694	694
query69	524	356	338	338
query70	1053	952	921	921
query71	361	312	302	302
query72	5720	3253	3275	3253
query73	781	724	305	305
query74	8837	8732	8600	8600
query75	2842	2838	2495	2495
query76	3330	1056	654	654
query77	525	387	310	310
query78	9611	9742	9223	9223
query79	1354	922	583	583
query80	635	549	486	486
query81	525	267	223	223
query82	217	153	114	114
query83	272	263	244	244
query84	253	114	92	92
query85	910	510	441	441
query86	394	298	279	279
query87	2895	2881	2755	2755
query88	3452	2561	2546	2546
query89	375	355	331	331
query90	2207	178	162	162
query91	170	168	137	137
query92	99	74	65	65
query93	1613	909	517	517
query94	576	324	288	288
query95	598	340	370	340
query96	635	511	223	223
query97	2290	2374	2298	2298
query98	217	207	195	195
query99	580	567	523	523
Total cold run time: 252635 ms
Total hot run time: 173479 ms

@doris-robot
Copy link

ClickBench: Total hot run time: 26.93 s
machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
scripts: https://github.com/apache/doris/tree/master/tools/clickbench-tools
ClickBench test result on commit 221111dd56977c558f9bf0ca990d2b43eda7a7ba, data reload: false

query1	0.05	0.04	0.04
query2	0.09	0.05	0.04
query3	0.25	0.09	0.08
query4	1.61	0.12	0.12
query5	0.27	0.25	0.25
query6	1.15	0.67	0.65
query7	0.03	0.03	0.03
query8	0.05	0.04	0.05
query9	0.57	0.50	0.49
query10	0.56	0.55	0.55
query11	0.14	0.10	0.10
query12	0.15	0.11	0.11
query13	0.60	0.59	0.59
query14	0.94	0.95	0.94
query15	0.79	0.77	0.80
query16	0.42	0.42	0.41
query17	1.02	1.07	1.08
query18	0.23	0.22	0.21
query19	1.95	1.82	1.86
query20	0.02	0.02	0.01
query21	15.43	0.28	0.13
query22	5.01	0.05	0.04
query23	15.86	0.28	0.10
query24	1.18	0.24	0.63
query25	0.12	0.06	0.05
query26	0.13	0.13	0.14
query27	0.06	0.05	0.06
query28	4.18	1.08	0.90
query29	12.55	3.94	3.17
query30	0.29	0.14	0.12
query31	2.81	0.63	0.41
query32	3.24	0.56	0.45
query33	3.03	3.00	3.07
query34	16.16	5.12	4.43
query35	4.45	4.50	4.49
query36	0.65	0.51	0.51
query37	0.11	0.07	0.07
query38	0.07	0.04	0.04
query39	0.05	0.04	0.03
query40	0.17	0.15	0.14
query41	0.10	0.04	0.04
query42	0.04	0.03	0.03
query43	0.05	0.04	0.04
Total cold run time: 96.63 s
Total hot run time: 26.93 s

@hello-stephen
Copy link
Contributor

FE UT Coverage Report

Increment line coverage 53.85% (49/91) 🎉
Increment coverage report
Complete coverage report

@ghkang98
Copy link
Contributor Author

run buildall

@doris-robot
Copy link

TPC-H: Total hot run time: 31281 ms
machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
scripts: https://github.com/apache/doris/tree/master/tools/tpch-tools
Tpch sf100 test result on commit 221111dd56977c558f9bf0ca990d2b43eda7a7ba, data reload: false

------ Round 1 ----------------------------------
q1	17637	4226	4052	4052
q2	2081	366	260	260
q3	10137	1263	713	713
q4	10215	842	309	309
q5	7573	2106	1854	1854
q6	193	176	147	147
q7	927	787	676	676
q8	9287	1347	1091	1091
q9	4876	4522	4570	4522
q10	6768	1798	1412	1412
q11	537	298	279	279
q12	669	724	596	596
q13	17776	3851	3056	3056
q14	294	292	279	279
q15	583	507	509	507
q16	679	673	637	637
q17	652	793	500	500
q18	6570	6366	6254	6254
q19	1230	960	609	609
q20	391	353	241	241
q21	3088	2512	2317	2317
q22	1058	1027	970	970
Total cold run time: 103221 ms
Total hot run time: 31281 ms

----- Round 2, with runtime_filter_mode=off -----
q1	4067	4035	4024	4024
q2	324	410	330	330
q3	2092	2581	2217	2217
q4	1332	1768	1309	1309
q5	4122	4060	4124	4060
q6	214	173	137	137
q7	1916	1865	1749	1749
q8	2831	2554	2455	2455
q9	7346	7445	7376	7376
q10	2668	2820	2426	2426
q11	577	469	451	451
q12	749	794	651	651
q13	3629	4267	3567	3567
q14	288	320	289	289
q15	542	503	504	503
q16	637	730	640	640
q17	1172	1392	1450	1392
q18	8251	8022	7959	7959
q19	904	793	833	793
q20	1962	2075	1882	1882
q21	4515	4258	4121	4121
q22	1090	1048	986	986
Total cold run time: 51228 ms
Total hot run time: 49317 ms

@doris-robot
Copy link

TPC-DS: Total hot run time: 174143 ms
machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
scripts: https://github.com/apache/doris/tree/master/tools/tpcds-tools
TPC-DS sf100 test result on commit 221111dd56977c558f9bf0ca990d2b43eda7a7ba, data reload: false

query5	4609	614	476	476
query6	317	211	195	195
query7	4230	459	260	260
query8	338	252	227	227
query9	8699	2863	2909	2863
query10	527	375	342	342
query11	15188	15167	14836	14836
query12	184	116	113	113
query13	1261	498	400	400
query14	6308	3039	2768	2768
query14_1	2688	2633	2625	2625
query15	204	191	176	176
query16	987	474	476	474
query17	1086	665	560	560
query18	2551	428	330	330
query19	220	218	191	191
query20	121	116	112	112
query21	217	140	122	122
query22	4025	4428	4088	4088
query23	16071	15918	15563	15563
query23_1	15402	15550	15534	15534
query24	7109	1554	1153	1153
query24_1	1169	1164	1159	1159
query25	543	453	390	390
query26	1239	279	153	153
query27	2744	479	277	277
query28	4517	2167	2160	2160
query29	766	532	436	436
query30	311	229	207	207
query31	787	629	580	580
query32	87	72	74	72
query33	530	361	301	301
query34	885	880	517	517
query35	749	746	688	688
query36	881	889	872	872
query37	133	99	87	87
query38	2727	2721	2641	2641
query39	785	759	735	735
query39_1	710	719	712	712
query40	219	138	123	123
query41	75	81	66	66
query42	106	103	103	103
query43	439	439	449	439
query44	1313	742	763	742
query45	183	187	182	182
query46	844	943	600	600
query47	1461	1520	1343	1343
query48	313	324	234	234
query49	612	424	321	321
query50	614	265	196	196
query51	3745	3730	3773	3730
query52	105	103	91	91
query53	282	324	267	267
query54	282	265	264	264
query55	86	78	73	73
query56	295	303	293	293
query57	1030	1025	894	894
query58	270	250	258	250
query59	2180	2228	2077	2077
query60	354	330	305	305
query61	150	139	143	139
query62	398	373	303	303
query63	295	266	256	256
query64	4811	1247	969	969
query65	3822	3612	3767	3612
query66	1427	425	317	317
query67	15632	15464	15399	15399
query68	2741	1109	753	753
query69	444	355	327	327
query70	1020	921	815	815
query71	313	311	289	289
query72	5339	3154	3163	3154
query73	602	717	310	310
query74	8744	8697	8597	8597
query75	2756	2810	2461	2461
query76	2356	1044	639	639
query77	383	375	306	306
query78	9890	10021	9234	9234
query79	1062	918	587	587
query80	1281	571	480	480
query81	560	263	233	233
query82	1269	147	109	109
query83	329	250	236	236
query84	249	116	93	93
query85	876	482	416	416
query86	423	290	286	286
query87	2910	2884	2788	2788
query88	3484	2569	2565	2565
query89	390	338	325	325
query90	1987	171	160	160
query91	171	156	135	135
query92	78	72	71	71
query93	939	891	551	551
query94	631	325	286	286
query95	587	396	303	303
query96	641	496	225	225
query97	2363	2422	2345	2345
query98	215	195	199	195
query99	613	579	582	579
Total cold run time: 248069 ms
Total hot run time: 174143 ms

@doris-robot
Copy link

ClickBench: Total hot run time: 26.87 s
machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
scripts: https://github.com/apache/doris/tree/master/tools/clickbench-tools
ClickBench test result on commit 221111dd56977c558f9bf0ca990d2b43eda7a7ba, data reload: false

query1	0.06	0.05	0.04
query2	0.09	0.05	0.05
query3	0.25	0.09	0.08
query4	1.61	0.11	0.11
query5	0.28	0.26	0.25
query6	1.14	0.66	0.67
query7	0.03	0.03	0.02
query8	0.04	0.04	0.04
query9	0.56	0.50	0.51
query10	0.56	0.55	0.56
query11	0.15	0.10	0.10
query12	0.14	0.10	0.11
query13	0.60	0.59	0.59
query14	0.95	0.94	0.94
query15	0.79	0.77	0.78
query16	0.40	0.38	0.39
query17	1.05	1.06	1.04
query18	0.24	0.21	0.21
query19	1.97	1.84	1.88
query20	0.02	0.03	0.01
query21	15.42	0.28	0.14
query22	5.10	0.05	0.05
query23	15.76	0.29	0.10
query24	2.16	0.27	0.56
query25	0.10	0.08	0.05
query26	0.14	0.13	0.14
query27	0.08	0.06	0.06
query28	4.02	1.08	0.88
query29	12.54	3.96	3.16
query30	0.27	0.14	0.11
query31	2.82	0.63	0.39
query32	3.23	0.56	0.46
query33	3.00	3.04	3.03
query34	16.14	5.06	4.45
query35	4.40	4.47	4.46
query36	0.65	0.50	0.49
query37	0.10	0.06	0.07
query38	0.08	0.04	0.04
query39	0.05	0.03	0.03
query40	0.17	0.14	0.14
query41	0.09	0.04	0.03
query42	0.04	0.03	0.02
query43	0.05	0.04	0.04
Total cold run time: 97.34 s
Total hot run time: 26.87 s

@ghkang98
Copy link
Contributor Author

run buildall

@doris-robot
Copy link

TPC-H: Total hot run time: 30755 ms
machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
scripts: https://github.com/apache/doris/tree/master/tools/tpch-tools
Tpch sf100 test result on commit 379af7cf0dfff5b9a420b8fdb55aaff3ac4efc71, data reload: false

------ Round 1 ----------------------------------
q1	17628	4733	4579	4579
q2	2033	304	220	220
q3	10191	1271	723	723
q4	10217	842	304	304
q5	7530	2071	1823	1823
q6	191	175	140	140
q7	853	702	580	580
q8	9262	1370	1067	1067
q9	4795	4646	4560	4560
q10	6780	1654	1271	1271
q11	507	300	278	278
q12	330	373	223	223
q13	17787	3835	3108	3108
q14	241	256	209	209
q15	594	518	535	518
q16	639	630	578	578
q17	650	760	543	543
q18	6744	6337	6301	6301
q19	1252	968	616	616
q20	389	342	235	235
q21	2569	1920	1921	1920
q22	1061	1026	959	959
Total cold run time: 102243 ms
Total hot run time: 30755 ms

----- Round 2, with runtime_filter_mode=off -----
q1	4818	4768	4757	4757
q2	310	401	325	325
q3	2119	2666	2282	2282
q4	1340	1771	1292	1292
q5	4016	4021	4052	4021
q6	212	175	133	133
q7	1891	1937	1806	1806
q8	2849	2444	2541	2444
q9	7436	7315	7319	7315
q10	2639	2721	2414	2414
q11	564	474	476	474
q12	756	760	619	619
q13	3723	4347	3826	3826
q14	297	315	298	298
q15	562	529	519	519
q16	634	692	660	660
q17	1214	1487	1512	1487
q18	8025	7890	7867	7867
q19	918	829	804	804
q20	2035	2038	1935	1935
q21	4787	4557	4090	4090
q22	1114	1013	1007	1007
Total cold run time: 52259 ms
Total hot run time: 50375 ms

@doris-robot
Copy link

TPC-DS: Total hot run time: 172508 ms
machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
scripts: https://github.com/apache/doris/tree/master/tools/tpcds-tools
TPC-DS sf100 test result on commit 379af7cf0dfff5b9a420b8fdb55aaff3ac4efc71, data reload: false

query5	4409	620	496	496
query6	323	200	191	191
query7	4208	458	261	261
query8	344	249	230	230
query9	8700	2830	2855	2830
query10	422	341	276	276
query11	15462	15110	14973	14973
query12	171	121	113	113
query13	1239	450	370	370
query14	6038	3059	2797	2797
query14_1	2712	2661	2703	2661
query15	206	192	178	178
query16	983	488	451	451
query17	1105	689	562	562
query18	2435	432	333	333
query19	193	176	155	155
query20	126	117	116	116
query21	214	145	118	118
query22	4116	4191	3885	3885
query23	16478	15590	15345	15345
query23_1	15445	15653	15448	15448
query24	7131	1583	1177	1177
query24_1	1153	1183	1172	1172
query25	552	464	438	438
query26	1238	270	151	151
query27	2751	440	275	275
query28	4558	2152	2145	2145
query29	772	511	425	425
query30	304	245	206	206
query31	770	634	545	545
query32	80	83	73	73
query33	526	346	303	303
query34	897	868	537	537
query35	716	791	681	681
query36	866	910	836	836
query37	135	94	88	88
query38	2689	2711	2587	2587
query39	761	769	727	727
query39_1	710	712	715	712
query40	235	136	119	119
query41	66	63	63	63
query42	94	93	97	93
query43	475	467	421	421
query44	1298	738	731	731
query45	188	184	176	176
query46	828	938	588	588
query47	1456	1452	1372	1372
query48	309	342	244	244
query49	592	425	336	336
query50	674	267	206	206
query51	3782	3775	3727	3727
query52	93	89	77	77
query53	201	225	173	173
query54	271	249	245	245
query55	82	86	103	86
query56	294	298	287	287
query57	1048	1025	947	947
query58	259	268	263	263
query59	1976	2178	2076	2076
query60	328	323	309	309
query61	149	145	144	144
query62	390	350	308	308
query63	200	165	162	162
query64	4878	1143	837	837
query65	3840	3711	3793	3711
query66	1422	418	319	319
query67	15410	15676	15393	15393
query68	2386	1064	730	730
query69	390	316	273	273
query70	1008	924	884	884
query71	302	290	268	268
query72	5289	3090	3280	3090
query73	605	726	314	314
query74	8694	8761	8489	8489
query75	2304	2388	1907	1907
query76	2266	1051	653	653
query77	352	367	297	297
query78	9618	9903	9114	9114
query79	1054	948	579	579
query80	627	517	445	445
query81	470	263	229	229
query82	1364	151	122	122
query83	361	259	243	243
query84	256	115	96	96
query85	813	485	409	409
query86	371	329	290	290
query87	2846	2859	2721	2721
query88	3507	2624	2554	2554
query89	295	259	254	254
query90	1848	173	168	168
query91	164	152	129	129
query92	75	76	71	71
query93	1057	1029	643	643
query94	464	325	302	302
query95	576	389	315	315
query96	644	516	247	247
query97	2362	2392	2288	2288
query98	216	202	205	202
query99	604	586	534	534
Total cold run time: 245015 ms
Total hot run time: 172508 ms

@doris-robot
Copy link

ClickBench: Total hot run time: 27.11 s
machine: 'aliyun_ecs.c7a.8xlarge_32C64G'
scripts: https://github.com/apache/doris/tree/master/tools/clickbench-tools
ClickBench test result on commit 379af7cf0dfff5b9a420b8fdb55aaff3ac4efc71, data reload: false

query1	0.06	0.05	0.05
query2	0.10	0.05	0.04
query3	0.26	0.08	0.08
query4	1.61	0.12	0.11
query5	0.28	0.25	0.26
query6	1.15	0.65	0.65
query7	0.04	0.02	0.03
query8	0.06	0.04	0.04
query9	0.57	0.50	0.51
query10	0.56	0.54	0.56
query11	0.14	0.09	0.10
query12	0.14	0.10	0.11
query13	0.61	0.59	0.58
query14	0.94	0.94	0.95
query15	0.80	0.78	0.79
query16	0.39	0.39	0.42
query17	1.05	1.06	1.04
query18	0.23	0.22	0.21
query19	1.86	1.84	1.78
query20	0.02	0.01	0.01
query21	16.14	0.27	0.14
query22	5.22	0.05	0.05
query23	15.69	0.27	0.10
query24	1.49	0.64	0.70
query25	0.08	0.11	0.06
query26	0.14	0.13	0.14
query27	0.08	0.05	0.05
query28	5.11	1.09	0.89
query29	12.61	3.91	3.14
query30	0.28	0.14	0.12
query31	2.82	0.61	0.39
query32	3.24	0.56	0.46
query33	2.98	3.01	3.06
query34	16.06	5.08	4.43
query35	4.52	4.46	4.49
query36	0.66	0.51	0.50
query37	0.12	0.07	0.06
query38	0.08	0.04	0.04
query39	0.05	0.03	0.03
query40	0.16	0.14	0.13
query41	0.09	0.04	0.03
query42	0.04	0.02	0.02
query43	0.05	0.04	0.03
Total cold run time: 98.58 s
Total hot run time: 27.11 s

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants